home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Source Code
/
Visual Basic Source Code.iso
/
vbsource
/
3d_menu
/
3d1.frm
< prev
next >
Wrap
Text File
|
1995-05-07
|
3KB
|
123 lines
VERSION 2.00
Begin Form Form1
BackColor = &H00C0C0C0&
Caption = "Demo"
ClientHeight = 2655
ClientLeft = 1050
ClientTop = 2070
ClientWidth = 7455
Height = 3060
Left = 990
LinkTopic = "Form1"
ScaleHeight = 2655
ScaleWidth = 7455
Top = 1725
Width = 7575
Begin PictureBox About
ForeColor = &H00000000&
Height = 495
Left = 960
ScaleHeight = 465
ScaleWidth = 1065
TabIndex = 4
Top = 480
Width = 1095
Begin Label Label3
BackStyle = 0 'Transparent
Caption = "A&bout"
Height = 375
Left = 120
TabIndex = 5
Top = 120
Width = 855
End
End
Begin PictureBox File
Height = 735
Left = 0
ScaleHeight = 705
ScaleWidth = 1185
TabIndex = 2
Top = 480
Width = 1215
Begin Label Label4
BackStyle = 0 'Transparent
Caption = "E&xit"
Height = 375
Left = 120
TabIndex = 6
Top = 360
Width = 735
End
End
Begin PictureBox Panel3D1
ForeColor = &H00000000&
Height = 495
Left = 0
ScaleHeight = 465
ScaleWidth = 7425
TabIndex = 0
Top = 0
Width = 7455
Begin Label Label2
BackStyle = 0 'Transparent
Caption = "&About"
Height = 255
Left = 960
TabIndex = 3
Top = 120
Width = 1455
End
Begin Label Label1
BackStyle = 0 'Transparent
Caption = "&File"
ForeColor = &H00000000&
Height = 255
Left = 120
TabIndex = 1
Top = 120
Width = 1095
End
End
Begin Label Label5
BackStyle = 0 'Transparent
Caption = "JWPC '95"
FontBold = -1 'True
FontItalic = 0 'False
FontName = "MS Sans Serif"
FontSize = 86.25
FontStrikethru = 0 'False
FontUnderline = 0 'False
ForeColor = &H00FF0000&
Height = 1695
Left = 0
TabIndex = 7
Top = 840
Width = 7575
End
End
Sub Form_Load ()
about.Visible = False
file.Visible = False
End Sub
Sub Label1_Click ()
file.Visible = True
about.Visible = False
End Sub
Sub Label2_Click ()
about.Visible = True
file.Visible = False
End Sub
Sub Label3_Click ()
MsgBox "Copyright (C) 1994 Jeff Wilcox, President of JWPC 1995, inc.", 48, "About 3d Menus"
End Sub